runtime.evacDst.i (field)

17 uses

	runtime (current package)
		map.go#L1164: 	i int            // key/elem index into b
		map.go#L1241: 				if dst.i == bucketCnt {
		map.go#L1243: 					dst.i = 0
		map.go#L1247: 				dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
		map.go#L1258: 				dst.i++
		map_fast32.go#L422: 				if dst.i == bucketCnt {
		map_fast32.go#L424: 					dst.i = 0
		map_fast32.go#L428: 				dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
		map_fast32.go#L439: 				dst.i++
		map_fast64.go#L424: 				if dst.i == bucketCnt {
		map_fast64.go#L426: 					dst.i = 0
		map_fast64.go#L430: 				dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
		map_fast64.go#L447: 				dst.i++
		map_faststr.go#L450: 				if dst.i == bucketCnt {
		map_faststr.go#L452: 					dst.i = 0
		map_faststr.go#L456: 				dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
		map_faststr.go#L462: 				dst.i++